闘本 1.1 重複のない文字列
提出
code: python
# ある文字列が、すべて固有であるかどうかを判定
set_strings = set(strings)
if len(strings) == len(set_strings):
print("Yes")
else:
print("No")
# 新たなデータ構造が使えない場合
for s in strings:
if s in strings:
print("No")
exit()
print("Yes")
実行結果
code: zsh
File "/Users/wafuwafu13/Desktop/python_playground/debug.py", line 2, in <module>
^
NameError: name 'a' is not defined